home *** CD-ROM | disk | FTP | other *** search
/ Ham Radio 2000 #2 / Ham Radio 2000 - Volume 2.iso / HAMV2 / TCP_IP / TNOS230S / TIPMAIL.H < prev    next >
Encoding:
C/C++ Source or Header  |  1997-01-19  |  653 b   |  34 lines

  1. #ifndef _TIPMAIL_H
  2. #define _TIPMAIL_H
  3.  
  4. struct tipcb {
  5.     struct tipcb *next;
  6.     struct proc *proc;
  7.     struct proc *in;
  8.     struct iface *iface;
  9.     struct timer timer;
  10.     int (*rawsave) (struct iface *,struct mbuf *);
  11.     int s;
  12.     int echo;
  13.     char keep;
  14.     char modem;
  15.     char firstwarn;
  16.         char raw;
  17.     int asy_dev;
  18.     unsigned default_timeout;
  19.     unsigned timeout;
  20. };
  21.  
  22. #define NULLTIP (struct tipcb *)0
  23.  
  24. #ifndef _COMMANDS_H
  25. int tipstart (int argc,char *argv[],void *p);
  26. int tip0 (int argc,char const *argv[],void *p);
  27. int telnet0 (int argc,char *argv[],void *p);
  28. int telnet1 (int argc,char *argv[],void *p);
  29. #endif
  30.  
  31.  
  32. #endif /* _TIPMAIL_H */
  33.  
  34.